var testing.chatty
18 uses
testing (current package)
example.go#L80: fmt.Printf("%s--- FAIL: %s (%s)\n%s", chatty.prefix(), eg.Name, dstr, fail)
example.go#L82: } else if chatty.on {
example.go#L83: fmt.Printf("%s--- PASS: %s (%s)\n", chatty.prefix(), eg.Name, dstr)
example.go#L86: if chatty.on && chatty.json {
example.go#L87: fmt.Printf("%s=== NAME %s\n", chatty.prefix(), "")
run_example.go#L22: if chatty.on {
run_example.go#L23: fmt.Printf("%s=== RUN %s\n", chatty.prefix(), eg.Name)
testing.go#L460: flag.Var(&chatty, "test.v", "verbose: print additional output")
testing.go#L492: chatty chattyFlag
testing.go#L580: return &chattyPrinter{w: w, json: chatty.json}
testing.go#L720: return chatty.on
testing.go#L2250: if chatty.json {
testing.go#L2349: fmt.Print(chatty.prefix(), "FAIL: package testing must run tests\n")
testing.go#L2355: fmt.Print(chatty.prefix(), "testing: race detected outside of test execution\n")
testing.go#L2359: fmt.Print(chatty.prefix(), "FAIL\n")
testing.go#L2367: fmt.Print(chatty.prefix(), "FAIL\n")
testing.go#L2378: fmt.Print(chatty.prefix(), "PASS\n")